home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr28 / par300.zip / EXAMPL09.POM < prev    next >
Text File  |  1995-04-07  |  806b  |  27 lines

  1. ;
  2. ;   NOTE:  A quick-reference summary of POM commands appears in EXAMPL04.POM
  3. ;
  4. ;-------------------------------------------------------------------------------
  5. ;
  6. ;   This file demonstrates the use of DBF files.  Note that $FLINE is not
  7. ;   available in DBF mode, since the line is already parsed into fields.
  8. ;
  9. ;-------------------------------------------------------------------------------
  10. ;
  11. TRACE    ADDR1
  12. IGNORE   ADDR1   "Faster"
  13. IGNORE   DELETED "Y"
  14.  
  15. SET      name   = EDITOR
  16. PAD      name   "R" " " "20"
  17.  
  18. SET      phone  = VOICE
  19. PAD      phone  "R"  " "  "20"
  20.  
  21. SET      faxnum = FAX
  22. PAD      faxnum "R"  " "  "20"
  23.  
  24. OUTHDG   "NAME OF CONTACT     VOICE NUMBER        FAX NUMBER"
  25. OUTHDG   "---------------     ------------        ----------"
  26. OUTEND   |{name}{phone}{faxnum}
  27.